Skip to main content

Quickstart

The Android SDK is of the library is made available as a Maven package.

Installation

Add the Mobai maven repository to the project level build.gradle file

// build.gradle (Project)
allprojects {
repositories {
maven {
url 'https://pkgs.dev.azure.com/mobaias/android/_packaging/sdks/maven/v1'
name 'sdks'
}
}
}

Add the Mobai Core library as a dependency in the module level build.gradle file

// build.gradle (Module)
dependencies {
implementation 'bio.mobai:core:1.0.0'
}

For more options visit the Azure artifacts page.